In [70]:
# Author: Stephen Situ
# This is a project that uses Monte Carlo Simulation to preform stock forecasts and find the probability of various outcomes. 
# Using the Yahoo Finance library in Python, we are able to obtain stock market price data for Apple and Tesla Stock. Using the 
# daily log return of the stock, we create a normal distribution and use randomly selected points from the distribution to calculate
# the gain/loss. Afterwards, we create 1000 simulations of the stock price over 260 days (260 trading days in a year). The simulations
# can be visualized and the final stock price distribution can be analyzed further. This can help investors understand various scenarios
# and calculate risk
In [ ]:
# Import libraries
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
import yfinance as yf
import random
In [4]:
# print Tesla data from 2015-202
print(actual_hist_tesla)
                                 Open        High         Low       Close  \
Date                                                                        
2015-01-02 00:00:00-05:00   14.858000   14.883333   14.217333   14.620667   
2015-01-05 00:00:00-05:00   14.303333   14.433333   13.810667   14.006000   
2015-01-06 00:00:00-05:00   14.004000   14.280000   13.614000   14.085333   
2015-01-07 00:00:00-05:00   14.223333   14.318667   13.985333   14.063333   
2015-01-08 00:00:00-05:00   14.187333   14.253333   14.000667   14.041333   
...                               ...         ...         ...         ...   
2022-11-22 00:00:00-05:00  168.630005  170.919998  166.190002  169.910004   
2022-11-23 00:00:00-05:00  173.570007  183.619995  172.500000  183.199997   
2022-11-25 00:00:00-05:00  185.059998  185.199997  180.630005  182.860001   
2022-11-28 00:00:00-05:00  179.960007  188.500000  179.000000  182.919998   
2022-11-29 00:00:00-05:00  184.990005  186.380005  178.750000  180.830002   

                            Adj Close     Volume  Dividends  Stock Splits  
Date                                                                       
2015-01-02 00:00:00-05:00   14.620667   71466000          0           0.0  
2015-01-05 00:00:00-05:00   14.006000   80527500          0           0.0  
2015-01-06 00:00:00-05:00   14.085333   93928500          0           0.0  
2015-01-07 00:00:00-05:00   14.063333   44526000          0           0.0  
2015-01-08 00:00:00-05:00   14.041333   51637500          0           0.0  
...                               ...        ...        ...           ...  
2022-11-22 00:00:00-05:00  169.910004   78452300          0           0.0  
2022-11-23 00:00:00-05:00  183.199997  109536700          0           0.0  
2022-11-25 00:00:00-05:00  182.860001   50672700          0           0.0  
2022-11-28 00:00:00-05:00  182.919998   92905200          0           0.0  
2022-11-29 00:00:00-05:00  180.830002   83357100          0           0.0  

[1992 rows x 8 columns]
In [5]:
# print Apple data from 2015-2022
print(actual_hist_apple)
                                 Open        High         Low       Close  \
Date                                                                        
2015-01-02 00:00:00-05:00   27.847500   27.860001   26.837500   27.332500   
2015-01-05 00:00:00-05:00   27.072500   27.162500   26.352501   26.562500   
2015-01-06 00:00:00-05:00   26.635000   26.857500   26.157499   26.565001   
2015-01-07 00:00:00-05:00   26.799999   27.049999   26.674999   26.937500   
2015-01-08 00:00:00-05:00   27.307501   28.037500   27.174999   27.972500   
...                               ...         ...         ...         ...   
2022-11-22 00:00:00-05:00  148.130005  150.419998  146.929993  150.179993   
2022-11-23 00:00:00-05:00  149.449997  151.830002  149.339996  151.070007   
2022-11-25 00:00:00-05:00  148.309998  148.880005  147.119995  148.110001   
2022-11-28 00:00:00-05:00  145.139999  146.639999  143.380005  144.220001   
2022-11-29 00:00:00-05:00  144.289993  144.809998  140.350006  141.169998   

                            Adj Close     Volume  Dividends  Stock Splits  
Date                                                                       
2015-01-02 00:00:00-05:00   24.603209  212818400        0.0           0.0  
2015-01-05 00:00:00-05:00   23.910091  257142000        0.0           0.0  
2015-01-06 00:00:00-05:00   23.912338  263188400        0.0           0.0  
2015-01-07 00:00:00-05:00   24.247641  160423600        0.0           0.0  
2015-01-08 00:00:00-05:00   25.179302  237458000        0.0           0.0  
...                               ...        ...        ...           ...  
2022-11-22 00:00:00-05:00  150.179993   51804100        0.0           0.0  
2022-11-23 00:00:00-05:00  151.070007   58301400        0.0           0.0  
2022-11-25 00:00:00-05:00  148.110001   35195900        0.0           0.0  
2022-11-28 00:00:00-05:00  144.220001   69246000        0.0           0.0  
2022-11-29 00:00:00-05:00  141.169998   83763800        0.0           0.0  

[1992 rows x 8 columns]
In [6]:
# Check first and last data point of Tesla and Apple
print(actual_hist_tesla.iloc[[0,-1]])
print(actual_hist_apple.iloc[[0,-1]])
                                 Open        High         Low       Close  \
Date                                                                        
2015-01-02 00:00:00-05:00   14.858000   14.883333   14.217333   14.620667   
2022-11-29 00:00:00-05:00  184.990005  186.380005  178.750000  180.830002   

                            Adj Close    Volume  Dividends  Stock Splits  
Date                                                                      
2015-01-02 00:00:00-05:00   14.620667  71466000          0           0.0  
2022-11-29 00:00:00-05:00  180.830002  83357100          0           0.0  
                                 Open        High         Low       Close  \
Date                                                                        
2015-01-02 00:00:00-05:00   27.847500   27.860001   26.837500   27.332500   
2022-11-29 00:00:00-05:00  144.289993  144.809998  140.350006  141.169998   

                            Adj Close     Volume  Dividends  Stock Splits  
Date                                                                       
2015-01-02 00:00:00-05:00   24.603209  212818400        0.0           0.0  
2022-11-29 00:00:00-05:00  141.169998   83763800        0.0           0.0  
In [195]:
# Plot Line graph of Tesla stock price
fig = plt.figure(figsize=(8,8))
plt.plot(actual_hist_tesla["Close"])
plt.xlabel("Year")
plt.ylabel("Tesla Stock Price")
plt.title("Tesla Stock Price from 2015-2022")
Out[195]:
Text(0.5, 1.0, 'Tesla Stock Price from 2015-2022')
In [194]:
# Plot line graph of apple stock price
fig = plt.figure(figsize=(8,8))
plt.plot(actual_hist_apple["Close"])
plt.xlabel("Year")
plt.ylabel("Apple Stock Price")
plt.title("Apple Stock Price from 2015-2022")
Out[194]:
Text(0.5, 1.0, 'Apple Stock Price from 2015-2022')
In [196]:
# Download Full Tesla data
df1_tesla = yf.download("TSLA")
[*********************100%***********************]  1 of 1 completed
In [197]:
# Calculate log returns
returns_tesla = np.log(1+df1_tesla["Adj Close"].pct_change())
print("Daily percent log returns are:\n",returns)
Daily percent log returns are:
 Date
2010-06-29         NaN
2010-06-30   -0.002515
2010-07-01   -0.081723
2010-07-02   -0.134312
2010-07-06   -0.175470
                ...   
2022-12-01    0.000000
2022-12-02    0.000821
2022-12-05   -0.065805
2022-12-06   -0.014520
2022-12-07   -0.032671
Name: Adj Close, Length: 3134, dtype: float64
In [198]:
# Calculate mean and standard deviation of percent log returns
mu_tesla = returns_tesla.mean()
sigma_tesla = returns_tesla.std()
print("Mean of percent log return is ", round(mu_tesla,4))
print("Standard Deviation of percent log return is", round(sigma_tesla,4))
Mean of percent log return is  0.0015
Standard Deviation of percent log return is 0.0357
In [199]:
# Create normal distribution
sim_rets_tesla = np.random.normal(mu_tesla,sigma_tesla,260)
In [200]:
# Initialize the first price of the simulations as the last price of the data
initial_tesla = df1_tesla["Adj Close"].iloc[-1]
In [201]:
# Use Cummulative product function to calculate price of stock 
sim_prices_tesla = initial_tesla * (sim_rets_tesla+1).cumprod()
In [202]:
# Create empty pandas dataframe to hold final price
df_tesla_final = pd.DataFrame(columns=["Simulation","Final Price"])
In [203]:
# Use for loop to simulate 1000 simulations and plot the price
# Also append the empty panda data frame
for i in range(1000):
     sim_rets_tesla = np.random.normal(mu_tesla,sigma_tesla,260)
     sim_prices_tesla = initial_tesla * (sim_rets_tesla + 1).cumprod()
     df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)  
     plt.axhline(initial_tesla, c='k')
     plt.plot(sim_prices_tesla)
     plt.xlabel("Day")
     plt.ylabel("Tesla Stock Price")
     plt.title("1000 Tesla Stock Price Simulations")
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\2877517324.py:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_tesla_final = df_tesla_final.append({"Simulation": i, "Final Price":sim_prices_tesla[-1]}, ignore_index=True)
In [204]:
# Calculate the Average of the final price
# Plot a histogram of the final price
print("The Average Price of Tesla over 1000 simulations after 260 days is $", round(df_tesla_final["Final Price"].mean(),2))
plt.hist(df_tesla_final["Final Price"], density=True, bins=30)
plt.title("Distribution of Tesla Stock Price After 260 Days")
plt.xlabel("Final Tesla Stock Price")
The Average Price of Tesla over 1000 simulations after 260 days is $ 258.34
Out[204]:
Text(0.5, 0, 'Final Tesla Stock Price')
In [205]:
# We repeat the same procedure for Apple stock
df1_apple = yf.download("AAPL")
returns_apple = np.log(1+df1_apple["Adj Close"].pct_change())
print("Daily percent log returns are:\n",returns_apple)
[*********************100%***********************]  1 of 1 completed
Daily percent log returns are:
 Date
1980-12-12         NaN
1980-12-15   -0.053580
1980-12-16   -0.076231
1980-12-17    0.024449
1980-12-18    0.028580
                ...   
2022-12-01    0.001890
2022-12-02   -0.003377
2022-12-05   -0.008015
2022-12-06   -0.025697
2022-12-07   -0.013881
Name: Adj Close, Length: 10587, dtype: float64
In [206]:
mu_apple = returns.mean()
sigma_apple = returns.std()
print("Mean of percent log return is ", round(mu_apple,4))
print("Standard Deviation of percent log return is", round(sigma_apple,4))
Mean of percent log return is  0.0015
Standard Deviation of percent log return is 0.0357
In [207]:
sim_rets_apple = np.random.normal(mu_apple,sigma_apple,260)
initial_apple = df1_apple["Adj Close"].iloc[-1]
sim_prices_apple = initial_apple * (sim_rets_apple+1).cumprod()
df_apple_final = pd.DataFrame(columns=["Simulation","Final Price"])
In [210]:
for i in range(1000):
     sim_rets_apple = np.random.normal(mu_apple,sigma_apple,260)
     sim_prices_apple = initial_apple * (sim_rets_apple + 1).cumprod()
     df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)  
     plt.axhline(initial_apple, c='k')
     plt.plot(sim_prices_apple)
     plt.xlabel("Day")
     plt.ylabel("Apple Stock Price")
     plt.title("1000 Apple Stock Price Simulations")
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
C:\Users\Steve\AppData\Local\Temp\ipykernel_12668\4187989838.py:4: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
  df_apple_final = df_apple_final.append({"Simulation": i, "Final Price":sim_prices_apple[-1]}, ignore_index=True)
In [211]:
print("The Average Price of Apple over 1000 simulations after 260 days is $", round(df_apple_final["Final Price"].mean(),2))
plt.hist(df_apple_final["Final Price"], density=True, bins=30)
plt.title("Distribution of Apple Stock Price After 260 Days")
plt.xlabel("Final Apple Stock Price")
The Average Price of Apple over 1000 simulations after 260 days is $ 211.44
Out[211]:
Text(0.5, 0, 'Final Apple Stock Price')